.feedback-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background-color: #f5f5f7;
}

.feedback-container h2 {
    margin: 0;
    padding: 20px;
    font-size: 20px;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
}

#comments-list {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comment {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: bold;
    font-size: 14px;
}

.comment-date {
    font-size: 12px;
    color: #666;
}

.comment-content {
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}
.comment-content p {
    margin: 0 0 10px 0;
}
.comment-content p:last-child {
    margin-bottom: 0;
}
.comment-content img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 6px;
    margin-top: 10px;
}


.feedback-form-container {
    padding: 15px;
    border-top: 1px solid #ddd;
    background-color: #fff;
}

#feedback-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#feedback-input {
    width: 100%;
    min-height: 80px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
    resize: vertical;
}

#submit-feedback {
    align-self: flex-end;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: #007aff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

#submit-feedback:disabled {
    background-color: #a0c9ff;
    cursor: not-allowed;
}

